home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue25 / compress / COMPRESS.ZIP / COMPDEMO.DPR < prev    next >
Encoding:
Text File  |  1997-07-09  |  265 b   |  15 lines

  1. program Compdemo;
  2.  
  3. uses
  4.   Forms,
  5.   COMPMAIN in 'COMPMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'TCompress 3.0 Demonstration';
  11.   Application.HelpFile := 'COMPRESS.HLP';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.